home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / source / tracker-4.13.lha / tracker / prefs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-15  |  1.4 KB  |  53 lines

  1. /* prefs.h 
  2.     vi:ts=3 sw=3:
  3.  */
  4.  
  5. /* $Id: prefs.h,v 4.7 1995/02/08 13:14:56 espie Exp $
  6.  * $Log: prefs.h,v $
  7.  * Revision 4.7  1995/02/08  13:14:56  espie
  8.  * *** empty log message ***
  9.  *
  10.  * Revision 4.7  1995/02/08  13:14:56  espie
  11.  * *** empty log message ***
  12.  *
  13.  * Revision 4.6  1995/02/01  20:41:45  espie
  14.  * Added color.
  15.  *
  16.  * Revision 4.6  1995/02/01  20:41:45  espie
  17.  * Added color.
  18.  *
  19.  * Revision 4.5  1995/02/01  16:39:04  espie
  20.  * *** empty log message ***
  21.  *
  22.  * Revision 4.5  1995/02/01  16:39:04  espie
  23.  * *** empty log message ***
  24.  *
  25.  * Revision 4.2  1994/08/23  18:19:46  espie
  26.  * Added speedmode option.
  27.  */
  28.  
  29. #define BASE_PREFS      50
  30. #define PREF_TYPE       BASE_PREFS
  31. #define PREF_SPEED      (BASE_PREFS+1)
  32. #define PREF_TOLERATE   (BASE_PREFS+2)
  33. #define PREF_REPEATS    (BASE_PREFS+3)
  34. #define PREF_IMASK      (BASE_PREFS+4)
  35. #define PREF_BCDVOL     (BASE_PREFS+5)
  36. #define PREF_DUMP       (BASE_PREFS+6)
  37. #define PREF_SYNC       (BASE_PREFS+7)
  38. #define PREF_SHOW       (BASE_PREFS+8)
  39. #define PREF_SPEEDMODE     (BASE_PREFS+9)
  40. #define PREF_COLOR        (BASE_PREFS+10)
  41. #define NORMAL_SPEEDMODE 0
  42. #define FINESPEED_ONLY    1
  43. #define SPEED_ONLY 2
  44. #define OLD_SPEEDMODE 3
  45.  
  46. #define NUMBER_PREFS    (PREF_COLOR - BASE_PREFS + 1)
  47.  
  48. XT VALUE get_pref P((int index));
  49. XT void set_pref P((int index, VALUE value));
  50. XT int get_pref_scalar P((int index));
  51. XT void set_pref_scalar P((int index, int value));
  52. XT struct tag *get_prefs P((void));
  53.